log/slog.Logger.log (method)

19 uses

	log/slog (current package)
		logger.go#L189: 	l.log(ctx, level, msg, args...)
		logger.go#L199: 	l.log(context.Background(), LevelDebug, msg, args...)
		logger.go#L204: 	l.log(ctx, LevelDebug, msg, args...)
		logger.go#L209: 	l.log(context.Background(), LevelInfo, msg, args...)
		logger.go#L214: 	l.log(ctx, LevelInfo, msg, args...)
		logger.go#L219: 	l.log(context.Background(), LevelWarn, msg, args...)
		logger.go#L224: 	l.log(ctx, LevelWarn, msg, args...)
		logger.go#L229: 	l.log(context.Background(), LevelError, msg, args...)
		logger.go#L234: 	l.log(ctx, LevelError, msg, args...)
		logger.go#L240: func (l *Logger) log(ctx context.Context, level Level, msg string, args ...any) {
		logger.go#L281: 	Default().log(context.Background(), LevelDebug, msg, args...)
		logger.go#L286: 	Default().log(ctx, LevelDebug, msg, args...)
		logger.go#L291: 	Default().log(context.Background(), LevelInfo, msg, args...)
		logger.go#L296: 	Default().log(ctx, LevelInfo, msg, args...)
		logger.go#L301: 	Default().log(context.Background(), LevelWarn, msg, args...)
		logger.go#L306: 	Default().log(ctx, LevelWarn, msg, args...)
		logger.go#L311: 	Default().log(context.Background(), LevelError, msg, args...)
		logger.go#L316: 	Default().log(ctx, LevelError, msg, args...)
		logger.go#L321: 	Default().log(ctx, level, msg, args...)